Telegram Group & Telegram Channel
24. Christmas tree pattern
X
X
XXX
X
XXXXX
X
XXX
XXXXXX


class ChristmasTreePattern
{
public static void main(String[] arg)
{
drawChristmasTree(4);
}

private static void drawChristmasTree(int n)
{
for (int i = 0; i < n; i++)
{
triangle(i + 1, n);
}
}

private static void triangle(int n, int max)
{
for (int i = 0; i < n; i++)
{
for (int j = 0; j < max - i - 1; j++)
{
System.out.print(" ");
}

for (int j = 0; j < i * 2 + 1; j++)
{
System.out.print("X");
}

System.out.println("");
}
}
}

@java_codings



tg-me.com/java_codings/36
Create:
Last Update:

24. Christmas tree pattern
X
X
XXX
X
XXXXX
X
XXX
XXXXXX


class ChristmasTreePattern
{
public static void main(String[] arg)
{
drawChristmasTree(4);
}

private static void drawChristmasTree(int n)
{
for (int i = 0; i < n; i++)
{
triangle(i + 1, n);
}
}

private static void triangle(int n, int max)
{
for (int i = 0; i < n; i++)
{
for (int j = 0; j < max - i - 1; j++)
{
System.out.print(" ");
}

for (int j = 0; j < i * 2 + 1; j++)
{
System.out.print("X");
}

System.out.println("");
}
}
}

@java_codings

BY Advance Java πŸ‘¨β€πŸ’»


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/java_codings/36

View MORE
Open in Telegram


Advance Java ‍ Telegram | DID YOU KNOW?

Date: |

Importantly, that investor viewpoint is not new. It cycles in when conditions are right (and vice versa). It also brings the ineffective warnings of an overpriced market with it.Looking toward a good 2022 stock market, there is no apparent reason to expect these issues to change.

Dump Scam in Leaked Telegram Chat

A leaked Telegram discussion by 50 so-called crypto influencers has exposed the extraordinary steps they take in order to profit on the back off unsuspecting defi investors. According to a leaked screenshot of the chat, an elaborate plan to defraud defi investors using the worthless β€œ$Few” tokens had been hatched. $Few tokens would be airdropped to some of the influencers who in turn promoted these to unsuspecting followers on Twitter.

Advance Java ‍ from id


Telegram Advance Java πŸ‘¨β€πŸ’»
FROM USA